Document Object Model - significado y definición. Qué es Document Object Model
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

Qué (quién) es Document Object Model - definición

CONVENTION FOR REPRESENTING AND INTERACTING WITH OBJECTS IN HTML, XHTML AND XML DOCUMENTS
Document object model; DOM (XML API); Dom2; Document Object Model-API; Getelementbyid; The DOM; HTML DOM; XML DOM; XMLDOM; XML-DOM; DOM tree; DOM API; HTML Document Object Model
  • WHATWG DOM

Document Object Model         
<hypertext, language, World-Wide Web> A W3C specification for application program interfaces for accessing the content of HTML and XML documents. http://w3.org/DOM/. (1999-12-14)
Living document         
DOCUMENT THAT GETS CONTINUOUSLY UPDATED
Living Document; Dynamic document; Evergreen document
A living document, also known as an evergreen document or dynamic document, is a document that is continually edited and updated. An example of a living document is an article in Wikipedia, an online encyclopedia that permits anyone to freely edit its articles, in contrast to "dead" or "static" documents, such as an article in a single edition of the Encyclopædia Britannica.
Entity–attribute–value model         
TYPE OF SPACE-EFFICIENT DATA MODEL
Entity-Attribute-Value model; Object-attribute-value model; Open schema; EAV model; Entity-attribute-value model
Entity–attribute–value model (EAV) is a data model to encode, in a space-efficient manner, entities where the number of attributes (properties, parameters) that can be used to describe them is potentially vast, but the number that will actually apply to a given entity is relatively modest. Such entities correspond to the mathematical notion of a sparse matrix.

Wikipedia

Document Object Model

The Document Object Model (DOM) is a cross-platform and language-independent interface that treats an HTML or XML document as a tree structure wherein each node is an object representing a part of the document. The DOM represents a document with a logical tree. Each branch of the tree ends in a node, and each node contains objects. DOM methods allow programmatic access to the tree; with them one can change the structure, style or content of a document. Nodes can have event handlers attached to them. Once an event is triggered, the event handlers get executed.

The principal standardization of the DOM was handled by the World Wide Web Consortium (W3C), which last developed a recommendation in 2004. WHATWG took over the development of the standard, publishing it as a living document. The W3C now publishes stable snapshots of the WHATWG standard.

In HTML DOM (Document Object Model), every element is a node:

  • A document is a document node.
  • All HTML elements are element nodes.
  • All HTML attributes are attribute nodes.
  • Text inserted into HTML elements are text nodes.
  • Comments are comment nodes.